home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 February / CMCD0205.ISO / Software / Freeware / Programare / bluej / bluejsetup-203.exe / {app} / lib / spanish / templates / newclass / unittest.tmpl < prev   
Text File  |  2004-12-19  |  569b  |  36 lines

  1. $PKGLINE
  2.  
  3. /**
  4.  * The test class $CLASSNAME.
  5.  *
  6.  * @author  (your name)
  7.  * @version (a version number or a date)
  8.  */
  9. public class $CLASSNAME extends junit.framework.TestCase
  10. {
  11.     /**
  12.      * Default constructor for test class $CLASSNAME
  13.      */
  14.     public $CLASSNAME()
  15.     {
  16.     }
  17.  
  18.     /**
  19.      * Sets up the test fixture.
  20.      *
  21.      * Called before every test case method.
  22.      */
  23.     protected void setUp()
  24.     {
  25.     }
  26.  
  27.     /**
  28.      * Tears down the test fixture.
  29.      *
  30.      * Called after every test case method.
  31.      */
  32.     protected void tearDown()
  33.     {
  34.     }
  35. }
  36.